golang.org/x/net/http2.dataBuffer.chunks (field)

17 uses

	golang.org/x/net/http2 (current package)
		databuffer.go#L66: 	chunks   [][]byte
		databuffer.go#L90: 		if b.r == len(b.chunks[0]) {
		databuffer.go#L91: 			putDataBufferChunk(b.chunks[0])
		databuffer.go#L92: 			end := len(b.chunks) - 1
		databuffer.go#L93: 			copy(b.chunks[:end], b.chunks[1:])
		databuffer.go#L94: 			b.chunks[end] = nil
		databuffer.go#L95: 			b.chunks = b.chunks[:end]
		databuffer.go#L103: 	if len(b.chunks) == 1 {
		databuffer.go#L104: 		return b.chunks[0][b.r:b.w]
		databuffer.go#L106: 	return b.chunks[0][b.r:]
		databuffer.go#L136: 	if len(b.chunks) != 0 {
		databuffer.go#L137: 		last := b.chunks[len(b.chunks)-1]
		databuffer.go#L143: 	b.chunks = append(b.chunks, chunk)